In this article we will discuss about popup window and closing it. To open a window by using window.open(). The window.open() has as 4 optional parameters.
Syntax:
window.open(URL, name, features, replace)
URL: URL is to open a page, if it is not specified a new window will open it should be blanked.
- Name: It is a target attribute or the name of the window.
- _blank URL is loaded in a new window.
- _parent URL is loaded into a parent frame
- _self URL replaces the current page
- _top URL replaces any framesets that may be loaded
Features: The postion of the window where to locate top, left and also has features such as resizable,scrollbars,,heights etc.
Replace: It specifies the URL is new entry or to replaces old entry as new entry. It will work if the url is loaded into the same window. It has two properties true or false.
Example:
<input type="button" value="Open popup" onclick="openPopup()" />
<input type="button" value="Close popup" onclick="closePopup()" />
<script type="text/javascript">
var popup;
function openPopup() {
popup =window.open("http://google.com", "My Window", "height=300,width=300")
}
function closePopup() {
popup.close();
}
</script>
Output:
Post your comments / questions
Recent Article
- How to create custom 404 error page in Django?
- Requested setting INSTALLED_APPS, but settings are not configured. You must either define..
- ValueError:All arrays must be of the same length - Python
- Check hostname requires server hostname - SOLVED
- How to restrict access to the page Access only for logged user in Django
- Migration admin.0001_initial is applied before its dependency admin.0001_initial on database default
- Add or change a related_name argument to the definition for 'auth.User.groups' or 'DriverUser.groups'. -Django ERROR
- Addition of two numbers in django python
Related Article